From 9aa2a7f43e7470a16689925925a6b5903ba6f438 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 19 May 1993 05:05:46 +0000 Subject: [PATCH] * process.c (wait_reading_process_input): Don't forget to call clear_waiting_for_input when we exit the loop because process input has arrived. --- src/process.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index 17a0ca6a7ca..fe98e4eabe9 100644 --- a/src/process.c +++ b/src/process.c @@ -1773,7 +1773,10 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) update_status (wait_proc); if (wait_proc != 0 && ! EQ (wait_proc->status, Qrun)) - break; + { + clear_waiting_for_input (); + break; + } /* Wait till there is something to do */ -- 2.30.2